-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
feat(playstation): Always fetch dumps from tempest #104040
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Dav1dde
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can also remove the UI option in one go, so customers are not mislead by it.
❌ 1 Tests Failed:
View the top 1 failed test(s) by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
61c015a to
7b6a8a6
Compare
e402ac3 to
beea39d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Frontend still shows non-functional "Attach Dumps" toggle
The backend removes the tempestFetchDumps option from the API (no longer returned in responses or accepted in PUT requests), but the frontend in static/app/views/settings/project/tempest/configForm.tsx still renders an "Attach Dumps" toggle that references project.tempestFetchDumps. This leaves a non-functional UI control that users can interact with but that has no effect since dumps are now always fetched. The frontend form and types need to be updated to remove this setting.
src/sentry/core/endpoints/project_details.py#L136-L137
sentry/src/sentry/core/endpoints/project_details.py
Lines 136 to 137 in beea39d
| "dynamicSamplingBiases", | |
| "tempestFetchScreenshots", |
src/sentry/api/serializers/models/project.py#L1119-L1123
sentry/src/sentry/api/serializers/models/project.py
Lines 1119 to 1123 in beea39d
| if has_tempest_access(obj.organization): | |
| data["tempestFetchScreenshots"] = attrs["options"].get( | |
| "sentry:tempest_fetch_screenshots", False | |
| ) |
Uh oh!
There was an error while loading. Please reload this page.